body {
  font-family: "Comic Sans MS", Arial, sans-serif;
}

button {
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 2px 2px 5px gray;
  transition: all 0.25s ease;
}

button:hover {
  transform: scale(1.1);
}

a:hover {
  text-decoration: none;
  font-weight: bold;
}

img {
  width: auto;
  max-height: 300px;
  object-fit: cover;
}

table {
  width: 80%;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

th{
  padding: 8px;
  border: 2px solid black;
}

td {
  padding: 8px;
  text-align: center;
  border: 2px solid darkblue;
}